home *** CD-ROM | disk | FTP | other *** search
/ Trouble & Attitude 1 / Trouble and Attitude - Issue 01.iso / mac / SETUP.RUL < prev    next >
Text File  |  1995-06-01  |  810b  |  34 lines

  1.  
  2. declare
  3.  
  4. string prog[255], icon[255], qtw[255], qtw2[255];
  5.  
  6.  
  7. //-----------------------------------------------------------------------------
  8. // Begin program statements after the keyword program.
  9. //-----------------------------------------------------------------------------
  10.  
  11. program
  12.  
  13.     Start:
  14.  
  15.     Disable(BACKGROUND);        
  16.  
  17.     // Change the pathname of the program to add to the name of
  18.     // the Director project on the CD-ROM.
  19.     // Change the working directory.
  20.  
  21.     prog = SRCDIR ^ "attitude.exe";
  22.     icon = SRCDIR ^ "attitude.ico";
  23.  
  24.     AddProgItemEx("Trouble and Attitude", "Trouble and Attitude Vol. 1 Issue 1", prog, SRCDIR, icon, 0, "", 0);
  25.  
  26.     // Change to the pathname of the QuickTime installation
  27.     // software
  28.  
  29.     qtw = SRCDIR ^ "qtw\\install.exe";
  30.  
  31.     LaunchApp(qtw, "");
  32.  
  33.     exit;
  34.